All Questions
19 questions
0votes
0answers
83views
WebDriverError: unknown error: failed to create Chrome process even when chromedriver, google chrome, selenium are installed
My package.json looks like this: { "name": "hello", "version": "1.0.0", "main": "main.js", "devDependencies": { ...
0votes
2answers
2kviews
Could not start a new session. Response code 500. Message: session not created
My seleinum webdriver is not launching browser, getting error frequently. Could not start a new session. Response code 500. Message: session not created: This version of ChromeDriver only supports ...
0votes
3answers
3kviews
Is Selenium WebDriver version: 4.10.0 compatible with ChromeDriver 93.0.4577.63 and Chrome browser Version 115.0.5790.110 (Official Build) (64-bit)?
I am trying to learn automation with Selenium but I got stuck with WebDriver... I followed all the steps. Installed the following, configured PATH: Chromedriver version : ChromeDriver 93.0.4577.63 ...
1vote
1answer
288views
Cant click or send keys, selenium webdriver python
I am trying to access the following website: and apply some filters like click on and select a date. When I click on I want to select one of the two options. But I cant click with xpath neither can I ...
-1votes
1answer
267views
switchto.defaultcontent() method not working with chromedriver 99.0.434
Problem: On a web page> + icon>clicking on it>opens a small widget on same page. it has iframe to access the fields, so switch to iframe. after this need to click on a button which does not ...
0votes
2answers
116views
What is wrong with my try except? I'm not getting either print, nor an error
Very new to python and automation. Our website has a counter at the top of the page to count down the days until Friday. It contains the number, and then the text - days until #friday (except for ...
2votes
0answers
2kviews
Problems disabling the Chrome "this browser is being controlled by automated test software" with Selenium in Python [duplicate]
I am a beginner with Selenium. I can not seem to disable the "AutomationControlled" flag in Chrome. according to this article: https://piprogramming.org/articles/How-to-make-Selenium-...
-1votes
1answer
141views
OutputType<X> is not getting resolved in Webdriver
I have below code: TakesScreenshot sc = (TakesScreenshot)driver; File srcfile = sc.getScreenshotAs(OutputType); Here the Output is not getting resolved to a type. Can anyone guide as to how to ...
0votes
1answer
125views
Executing on multiple windows or instances with Selenium web driver
I am trying to build an instagram bot with selenium. So far I have managed to get it work with 1 chrome window and 1 account, it auto follows, likes etc. with the given http requests on my express ...
0votes
1answer
739views
How to reuse the driver across sessions [duplicate]
I have searched high and low for this answer and I am unable to find the exact answer needed; so bear with me if this feels its repeating another question. Using C#, .NET, SpecFlow, Selenium I ...
3votes
3answers
6kviews
How to selecting option from right click menu with Selenium
I'm using chrome as the driver and after double-clicking/context-clicking, the prompt window opens but the driver won't switch to the prompt window. Here is what I have tried... The page I am opening ...
1vote
1answer
864views
How can we use ChromeDriver, IEDriver, GeckoDriver without selenium in python?
I am looking for a way to use web drivers (ChromeDriver, IEDriver, GeckoDriver etc., all together) with my native python app such that, the app will figure out the browser, and choose the driver ...
1vote
1answer
4kviews
Automating gmail login [During oAuth] gets blocked with user verification
This code works to login to gmail public void login(User user) { WebDriverWait wait = new WebDriverWait(driver, 60); WebElement emailTextBox = wait.until( ExpectedConditions....
-1votes
1answer
192views
Can't make webdriver to wait for page to load
First of all, I am familiar and read multiple times how to use implicit and explicit waits in Selenium. I have tried: driver.manage().timeouts().implicitlyWait() driver.manage().timeouts()....
0votes
0answers
406views
Problems headless chromedriver downloads
I have an automation process created with java selenium-webdriver, chromedriver and work with eclipse. The point is that by doing the process with headless and disable gpu I get that the download is ...